home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / lists / gem / l_0399 / 398 < prev    next >
Internet Message Format  |  1994-08-27  |  1KB

  1. Date: Fri, 10 Jun 1994 12:48:06 -0400 (EDT)
  2. From: Timothy Miller <millert@undergrad.csee.usf.edu>
  3. Subject: Re: Key Short-Cuts
  4. To: gem-list@world.std.com
  5. In-Reply-To: <memo.341037@cix.compulink.co.uk>
  6. Message-Id: <Pine.3.87.9406101206.C27930-0100000@grad>
  7. Mime-Version: 1.0
  8. Precedence: bulk
  9.  
  10.  
  11. On Thu, 9 Jun 1994, Mark Himsley wrote:
  12.  
  13. > In-Reply-To: <Pine.3.87.9406090105.B26810-0100000@undergrad>
  14. > >To distinguish between Ctrl-H and Backspace, you know that the code for 
  15. > >Backspace isn't going to change, so Ctrl-H is something with the same 
  16. > >ascii code but a different scancode,
  17. > Why not just check if ctrl is pressed? evnt_multi() can, and evnt_mouse() 
  18. > does return the state of the keyboard modifier keys (L-SHIFT, R-SHIFT, CTRL, 
  19. > ALT) 
  20. > Mark H.
  21. >                          mdsh@cix.compulink.co.uk
  22.  
  23. No.  This is not good.  As far as I can tell, backspace returns the same 
  24. code as ctrl-backspace.  You then would not be able to see 
  25. ctrl-backspace.  The only solution is to first check the ascii code then 
  26. compare the scancode to backspace.  If the code is different, then we 
  27. know it's ctrl-h.
  28.  
  29.  
  30.